home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Utilities
/
Winter Shell 1.0d2
/
Source
/
Libraries
/
MathLib
/
MathLib.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-06-21
|
188 b
|
15 lines
|
[
TEXT/KAHL
]
/* 91/11/15 Ari Halberstadt (AIH)
- Created this file */
#include "MathLib.h"
long min(long a, long b)
{
return(a < b ? a : b);
}
long max(long a, long b)
{
return(a > b ? a : b);
}